home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Common File Desc 1.xpl < prev    next >
Text File  |  2001-02-06  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="3"
  4. "UIPATH"="Appearance\Files&Folders\Files"
  5. "NAME"="Special File Description"
  6. "VERSION"="1.25"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="EXE Desc"
  9. "TEXT 2"="DLL Desc"
  10. "TEXT 3"="COM Desc"
  11. "DESCRIPTION 1"="This plug-in allows you to change the description for EXE, DLL and COM file."
  12. "DESCRIPTION 2"="We really don't know why anybody would change this, but it was on our user wish list so we've added it ;-)."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19. sP_1="HKCR\exefile\@"
  20. sP_2="HKCR\dllfile\@"
  21. sP_3="HKCR\comfile\@"
  22.  
  23. Sub Plugin_Initialize 
  24.  s=RegReadValue(sP_1)
  25.  SetUIElement 1,s
  26.  
  27.  s=RegReadValue(sP_2)
  28.  SetUIElement 2,s
  29.  
  30.  s=RegReadValue(sP_3)
  31.  SetUIElement 3,s
  32. End Sub
  33.  
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  s=GetUIElement(1)
  37.  Call RegWriteValue(SP_1,s,1)
  38.  
  39.  s=GetUIElement(2)
  40.  Call RegWriteValue(SP_2,s,1)
  41.  
  42.  s=GetUIElement(3)
  43.  Call RegWriteValue(SP_3,s,1)
  44. End Sub
  45.  
  46. Sub Plugin_Terminate 
  47. End Sub
  48.